home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 423_01 / recio200 / rbput.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-15  |  972 b   |  28 lines

  1. /*****************************************************************************
  2.    MODULE: rbput.c
  3.   PURPOSE: recio character delimited integral number output functions
  4. COPYRIGHT: (C) 1994 William Pierpoint
  5.  COMPILER: Borland C Version 3.1
  6.        OS: MSDOS Version 6.2
  7.   VERSION: 2.00
  8.   RELEASE: April 15, 1994
  9. *****************************************************************************/
  10.  
  11. #include <errno.h>
  12. #include <stdio.h>
  13. #include <stdlib.h>
  14. #include <string.h>
  15.  
  16. #include "_rbput.h"
  17.  
  18. /****************************************************************************/
  19. /* rbput_fn() - define rbput functions                                      */
  20. /****************************************************************************/
  21. #define uint   unsigned int
  22. #define ulong  unsigned long
  23.  
  24. rbput_fn(   int,  rbputi,   int,  itoa)
  25. rbput_fn(  uint, rbputui, ulong, ultoa)
  26. rbput_fn(  long,  rbputl,  long,  ltoa)
  27. rbput_fn( ulong, rbputul, ulong, ultoa)
  28.